home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 March / CHIP Mart 1997.iso / SurfCam / SURFCAM.Z / DYN20C.M3 < prev    next >
Encoding:
Text File  |  1996-04-01  |  4.2 KB  |  144 lines

  1. name Dynapath Delta 20 Conversational
  2.  
  3. N >4
  4. G >2 (
  5. X ->3.>4
  6. Y ->3.>4
  7. Z ->3.>4
  8. I ->3.>4
  9. J ->3.>4
  10. K ->3.>4
  11. Q ->3.>4
  12. R ->3.>4
  13. W ->3.>4
  14. P ->3.>4
  15. F >3.1
  16. L >3.3
  17. H >2
  18. D >2
  19. T >2
  20. M >2
  21. S >4
  22. U >2 G
  23. E >2
  24. $ 00
  25. e 00
  26.  
  27. ModalLetters X Y Z F W U              # List of letters that are modal    
  28.  
  29. ModalGs                               # List of g codes that are modal    
  30.  
  31. Sequence#s N 1 2 2                    # Char, freq, incr & start          
  32. First#? N                             # Y or N  'Output 1st sequence no.  
  33. Last#? N                              # Y or N  'Output last sequence no. 
  34.  
  35. HCode X                               # X or X U  'Horizontal char.       
  36. VCode Y                               # Y or Y V  'Vertical char.         
  37. Dcode Z                               # Depth char.                       
  38. FeedCode F                            # Feed rate char.                   
  39.  
  40. Comment ( )$                          # Begin End comment char.           
  41.  
  42. Spindle 3 4 5                         # Cw, ccw & stop m codes            
  43. Coolant 8 9 7                         # On, Off & Mist m codes            
  44. DComp 41 42 40                        # Left, Right & Cancel m codes      
  45. LComp 43 49                           # On & Off codes                    
  46.  
  47. Feed G1                             # Linear move                       
  48. Rapid G0                            # Rapid positioning word            
  49.  
  50. Inc/Abs G 91 90                       # Inc & Abs char. & values          
  51.  
  52. Work G                                # Work offset register              
  53.  
  54. CtrCode I J                           # I J or R or I J K L               
  55. Helical? N
  56.  
  57. Spaces? N                             # Y or N  'Spaces between words     
  58. Incremental? N                        # Y or N  'Inc or abs output        
  59. CtrCode I J                           # I J or R or I J K L               
  60.  
  61. Cw G2                                 # Circular move clockwise           
  62. Ccw G2                                # Circular move counter clockwise   
  63. CtrIncremental? N                     # Y or N  'Inc or abs I & J         
  64. ByQuadrants? N                        # Y or N  'Break arcs at quadrants  
  65.  
  66. Each $0                               # End of block word                 
  67.  
  68. UppercaseComments? Y                  # Y or N 'Require uppercase comments
  69.  
  70. WorkDefault 1                         # Work offset register default      
  71.  
  72. Drill 1                               # Drilling canned/manual cycle      
  73. G0 X[H] Y[V] Z[D] U1 W[Vclear] F[FRate]
  74. G0 X[H] Y[V]
  75. end cancel
  76.  
  77. Peck 1                                # Pecking canned/manual cycle       
  78. G0 X[H] Y[V] Z[D] U3 K[VBite] W[Vclear] F[FRate]
  79. G0 X[H] Y[V]
  80. end cancel
  81.  
  82. Tap 1                                 # Tapping canned/manual cycle       
  83. G0 X[H] Y[V] Z[D] U4 W[Vclear] F[Frate]
  84. G0 X[H] Y[V]
  85. end cancel
  86.  
  87. Ream                                  # Reaming canned/manual cycle       
  88. G0 X[H] Y[V] Z[D] U2 W[Vclear] F[FRate]
  89. G0 X[H] Y[V]
  90. end cancel
  91.  
  92. Bore                                  # Boring canned/manual cycle        
  93. G0 X[H] Y[V] Z[D] U7 W[Vclear] F[FRate]
  94. G0 X[H] Y[V]
  95. end cancel
  96.  
  97. Cancel                                # Cancel a canned/manual cycle      
  98. G0 U0
  99. end
  100.  
  101. StartCode                             # Start of the program              
  102. G[Program#]
  103. End
  104.  
  105. 1stToolChange                         # First tool change                 
  106. G9 T[Tool] M6 E[Work]
  107. G9 M[Cool]
  108. G9 M[Direct] S[Speed]
  109. G0 X[H] Y[V]
  110. G0 Z[D]
  111. End
  112.  
  113. Infeed                                # Enable cutter comp                
  114. G1 Z[D] F[Plunge]
  115. G1 X[H] Y[V] F[FRate]
  116. end
  117.  
  118. Outfeed                               # Disable cutter comp               
  119. G1 X[H] Y[V]
  120. end
  121.  
  122. ToolChange                            # Secondary tool changes            
  123. G9 M6 S100
  124. G9 T[Tool] M3 S[Speed] E[Work]
  125. G9 M[Cool]
  126. G0 X[H] Y[V]
  127. G0 Z[D]
  128. End
  129.  
  130. EndCode                               # End of the program                
  131. G9 M30
  132. e0
  133. End
  134.  
  135. CwCode                                # CW circular move                  
  136. G2 X[H] Y[V] I[IVal] J[JVal] D0 F[FRate]
  137. End
  138.  
  139. CcwCode                               # CCW circular move                 
  140. G2 X[H] Y[V] I[IVal] J[JVal] D1 F[FRate]
  141. End
  142.  
  143. Replace "e" with "END"
  144.